~ chicken-core (master) /manual/Module scheme


 1[[tags: manual]]
 2[[toc:]]
 3
 4== Module scheme
 5
 6This module is intended for backwards compatibility with older CHICKEN code
 7and exports a subset of the R7RS procedures in {{(scheme base)}}, {{(scheme char)}},
 8 {{(scheme complex)}}, {{(scheme cxr)}}, {{(scheme eval)}}, {{(scheme file)}},
 9{{(scheme inexact)}}, {{(scheme lazy)}}, {{(scheme load)}},
10{{(scheme read)}}, {{(scheme repl)}}, {{(scheme write)}} and all macros that correspond to
11the bindings available by default in R5RS.
12
13The bindings of this module are available by default at toplevel in interpreted
14and compiled code.
15
16For portable code is recommended to put toplevel code into modules and
17import {{(scheme base)}} which provides the base R7RS environment.
18
19---
20Previous: [[Included modules]]
21
22Next: [[Module (scheme r4rs)]]
Trap